if not Neighborhood.new():isValidLot(GetPrimitiveParameter(0)) then
   print("Invalid Lot ID specified.")
   SetScriptReturnValue(false)
   return 
end
if nBusiness.LotHasBusiness(GetPrimitiveParameter(0)) == false then
   print("Creating a business on lot ", GetPrimitiveParameter(0))
   SetScriptReturnValue(not nBusiness.CreateBusiness(GetPrimitiveParameter(0)))
   return 
   do break end
   SetScriptReturnValue(false)
   return 
else
   print("There is already a business associated with lot ", GetPrimitiveParameter(0))
   SetScriptReturnValue(true)
   return 
end

